home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 April / Macworld (1999-04).dmg / Shareware World / Info / For Developers / The Big Hairy Installer / The Instructions / 4. Condition Guide < prev    next >
Text File  |  1999-01-28  |  898b  |  18 lines

  1. Big Hairy Condition Guide
  2.  
  3. There are four condition commands, file, nofile, gestalt, and nogestalt. If they resolve to ‘true’ then the command which issued them, or the page that issued them, will load.
  4.  
  5. There is a basic structure to the condition command:
  6. Command•Path or Gestalt Selector•Filename or Gestalt Value
  7.  
  8.  
  9. Examples:
  10. nofile•<Extensions>•Test      If this file exists then false
  11. file•<Extensions>•Test         If this file exists then true
  12. nofile•<Extensions>•Test      If this folder exists then false
  13. file•<Extensions>•Test         If this folder exists then true
  14. nogestalt•otra•103              If the gestalt for ‘otra’ > 103 then false
  15. gestalt•otra•103                 If the gestalt for ‘otra’ > 103 then true
  16. nohgestalt•otra•103            If the hexadecimal gestalt for ‘otra’ > 103 then false
  17. hgestalt•otra•103               If the hexadecimal gestalt for ‘otra’ > 103 then true
  18.